12437c30b92793499dc3dd1be572271194ce7dba,src/main/java/edu/sc/seis/TauP/PathPlot.java,PathPlot,paintPaths,#Graphics#number#,116
Before Change
* (roe - a.getPathPoint(j).depth) / roe
* pixelRad);
y[j] = yOffset
- (int)Math.rint(Math.cos(-1 * a.getPathPoint(j).distRadian)
* (roe - a.getPathPoint(j).depth) / roe
* pixelRad);
}
After Change
* (roe - a.getPathPoint(j).getDepth()) / roe
* pixelRad);
y[j] = yOffset
- (int)Math.rint(Math.cos(-1 * a.getPathPoint(j).getDistRadian())
* (roe - a.getPathPoint(j).getDepth()) / roe
* pixelRad);
}